// Licensed to the Apache Software Foundation (ASF) under one// or more contributor license agreements. See the NOTICE file// distributed with this work for additional information// regarding copyright ownership. The ASF licenses this file// to you under the Apache License, Version 2.0 (the// "License"); you may not use this file except in compliance// with the License. You may obtain a copy of the License at//// http://www.apache.org/licenses/LICENSE-2.0//// Unless required by applicable law or agreed to in writing, software// distributed under the License is distributed on an "AS IS" BASIS,// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.// See the License for the specific language governing permissions and// limitations under the License.// Code generated by the FlatBuffers compiler. DO NOT EDIT.package flatbufimport (flatbuffers)typeDictionaryEncodingstruct { _tab flatbuffers.Table}func ( []byte, flatbuffers.UOffsetT) *DictionaryEncoding { := flatbuffers.GetUOffsetT([:]) := &DictionaryEncoding{} .Init(, +)return}func ( *DictionaryEncoding) ( []byte, flatbuffers.UOffsetT) { ._tab.Bytes = ._tab.Pos = }func ( *DictionaryEncoding) () flatbuffers.Table {return ._tab}// / The known dictionary id in the application where this data is used. In// / the file or streaming formats, the dictionary ids are found in the// / DictionaryBatch messagesfunc ( *DictionaryEncoding) () int64 { := flatbuffers.UOffsetT(._tab.Offset(4))if != 0 {return ._tab.GetInt64( + ._tab.Pos) }return0}// / The known dictionary id in the application where this data is used. In// / the file or streaming formats, the dictionary ids are found in the// / DictionaryBatch messagesfunc ( *DictionaryEncoding) ( int64) bool {return ._tab.MutateInt64Slot(4, )}// / The dictionary indices are constrained to be non-negative integers. If// / this field is null, the indices must be signed int32. To maximize// / cross-language compatibility and performance, implementations are// / recommended to prefer signed integer types over unsigned integer types// / and to avoid uint64 indices unless they are required by an application.func ( *DictionaryEncoding) ( *Int) *Int { := flatbuffers.UOffsetT(._tab.Offset(6))if != 0 { := ._tab.Indirect( + ._tab.Pos)if == nil { = new(Int) } .Init(._tab.Bytes, )return }returnnil}// / The dictionary indices are constrained to be non-negative integers. If// / this field is null, the indices must be signed int32. To maximize// / cross-language compatibility and performance, implementations are// / recommended to prefer signed integer types over unsigned integer types// / and to avoid uint64 indices unless they are required by an application.// / By default, dictionaries are not ordered, or the order does not have// / semantic meaning. In some statistical, applications, dictionary-encoding// / is used to represent ordered categorical data, and we provide a way to// / preserve that metadata herefunc ( *DictionaryEncoding) () bool { := flatbuffers.UOffsetT(._tab.Offset(8))if != 0 {return ._tab.GetBool( + ._tab.Pos) }returnfalse}// / By default, dictionaries are not ordered, or the order does not have// / semantic meaning. In some statistical, applications, dictionary-encoding// / is used to represent ordered categorical data, and we provide a way to// / preserve that metadata herefunc ( *DictionaryEncoding) ( bool) bool {return ._tab.MutateBoolSlot(8, )}func ( *DictionaryEncoding) () DictionaryKind { := flatbuffers.UOffsetT(._tab.Offset(10))if != 0 {returnDictionaryKind(._tab.GetInt16( + ._tab.Pos)) }return0}func ( *DictionaryEncoding) ( DictionaryKind) bool {return ._tab.MutateInt16Slot(10, int16())}func ( *flatbuffers.Builder) { .StartObject(4)}func ( *flatbuffers.Builder, int64) { .PrependInt64Slot(0, , 0)}func ( *flatbuffers.Builder, flatbuffers.UOffsetT) { .PrependUOffsetTSlot(1, flatbuffers.UOffsetT(), 0)}func ( *flatbuffers.Builder, bool) { .PrependBoolSlot(2, , false)}func ( *flatbuffers.Builder, DictionaryKind) { .PrependInt16Slot(3, int16(), 0)}func ( *flatbuffers.Builder) flatbuffers.UOffsetT {return .EndObject()}
The pages are generated with Goldsv0.8.2. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds.